-
Notifications
You must be signed in to change notification settings - Fork 2
/
mbsinit.c
46 lines (30 loc) · 845 Bytes
/
mbsinit.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2024, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
mbsinit.c
Abstract:
Tracks the state of a multibyte character conversion.
Author:
Kilian Kegel
--*/
#include <stddef.h>
/**
Synopsis
#include <wchar.h>
int mbsinit(const mbstate_t* ps);
Description
https://learn.microsoft.com/en-us/cpp/c-runtime-library/reference/mbsinit
https://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf#page=399
@param[in] str
count
mbstate
@retval 1 on success
@retval 0 on failure
**/
int mbsinit(const mbstate_t* ps)
{
return ps == NULL || ps->_Wchar == 0;
}